package OuraFifo;
import java.io.*;

public class Item
{
private int key;

    public Item(int key)
	{
		this.key=key;
	}
	public void setKey(int a)
	{
		key=a;
	}
	public int getKey()
	{
		return key;
	}
}
